home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: Parent Power / The Sunday Times - Parent Power.iso / pc / engine / school2.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2005-11-03  |  430 b   |  25 lines

  1. function backToMenu()
  2. {
  3.    trace("menu");
  4.    _parent.nav.schools_of_year.onRelease();
  5. }
  6. function showPage(nmPageNum)
  7. {
  8.    var _loc2_ = undefined;
  9.    if(nmPageNum == "prev")
  10.    {
  11.       _loc2_ = _currentframe - 1;
  12.    }
  13.    else if(nmPageNum == "next")
  14.    {
  15.       _loc2_ = _currentframe + 1;
  16.    }
  17.    else
  18.    {
  19.       _loc2_ = nmPageNum;
  20.    }
  21.    mcNav.gotoAndStop(_loc2_);
  22.    this.gotoAndStop(_loc2_);
  23. }
  24. stop();
  25.